

@font-face {
        font-family: "HubCustomFont"; /* Name you'll use in CSS */
        src: url("/static/app/fonts/Kollektif-Bold.woff") format("woff2"),
             url("/static/app/fonts/Kollektif-Bold.woff") format("woff");
        /* Add other formats if needed */
        font-weight: normal;
        font-style: normal;
    }



.input-grande {
    width: 100%;
    font-size: 18px !important;
}

html, body {
    height: 100%;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
}

/* Navbar fixa dentro da área do app */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 460px; /* largura do app */
    margin: 0 auto;
    height: 60px;
    background-color: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}




.container-textual {
  font-size: 18px;
  background: rgba(255, 255, 255, 0.9); /* fundo branco levemente transparente */
  z-index: 10;
  position: relative;
  max-width: 800px;
  text-align: justify;
  color: #444;
  font-weight: 400;
  font-size: 1.2em;
  text-indent: 30px;
}



/* Conteúdo cresce para empurrar o rodapé */
.conteudo {
    flex: 1;
    padding: 10px;
    margin-top: 60px; /* espaço para navbar */
}


/* Conteúdo cresce para empurrar o rodapé */
.conteudo_ajustado {
    margin-top: 60px; /* espaço para navbar */
}



/* Logo */
.navbar .logo {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Menu */
.navbar .menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar .menu a:hover {
    color: #00ff00;
}

.navbar .cabecalho {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'HubCustomFont', sans-serif;
    font-size: 22px;
    color: white;
}


.app {
    width: 100%;
    max-width: 460px;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* distribui os elementos verticalmente */
}
/* Fundo decorativo */
.app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 240px;
    width: 460px;
    height: 360px;
    background: url('/static/images/background.png') no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.app::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 200px;
    width: 360px;
    height: 360px;
    background: url('/static/images/background.png') no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Novo fundo canto inferior direito */
.app .bg-pinhao {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('/static/images/pinhao.png') no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}


/* Garante que tudo fique acima do fundo */
.logo-container,
.menu_app,
.parceiros {
    position: relative;
    z-index: 1;
}

/* Logo e título */
.logo-container .logo {
    width: 280px;
    max-width: 80%;
    margin-bottom: 10px;
    text-align: center;
}

.logo-container h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.subtitulo {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* Botões */
.menu_app .btn {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border: 2px solid transparent; /* necessário para não "pular" com a borda no hover */
    font-family: 'HubCustomFont', sans-serif;
    font-size: 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Efeito hover para todos os botões */
.menu_app .btn:hover {
    border: 2px solid #00c853;
    transform: scale(1.02); /* leve aumento */
    box-shadow: 0 0 8px rgba(0, 200, 83, 0.4); /* leve brilho verde */
}

.marca {
    background-image: url('/static/images/marca_brazao.png');
    background-repeat: no-repeat;
    background-position: 300px center;
    background-size: 65px 65px;
    padding-left: 40px; /* espaçamento para o ícone */
}


.btn.dark {
    background-color: #222;
    color: white;
}

.btn.dark:hover {
    background-color: #000;
}

.btn.light {
    background-color: #ddd;
    color: #333;
}

.btn.light:hover {
    background-color: #ccc;
}

.parceiros {
    background-color: #000; /* fundo preto */
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    color: white;
    bottom: 0;
}


.parceiros h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-family: 'HubCustomFont', sans-serif;
    color: white;
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Rodapé sempre no fim da página */
.rodape {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 460px; /* mesma largura do app */
    height: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-color: #C0C0C0;
    font-color: white;
}

#modalParceiroBody {
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  max-height: 70vh;
  overflow-y: auto;
}
